Remove incorrect tabulation in Makefile
authorSandrine Bailleux <[email protected]>
Wed, 3 Oct 2018 12:56:38 +0000 (14:56 +0200)
committerSandrine Bailleux <[email protected]>
Wed, 3 Oct 2018 13:06:53 +0000 (15:06 +0200)
When attempting to compile TF-A with "SPD=something ARCH=aarch32", the
following error message is printed:

 Makefile:291: *** recipe commences before first target.  Stop.

This is because the call to the error function is indented using a tab
whereas it's not part of a rule's recipe. Replace the tab by spaces.

Change-Id: Ic9b603837a0e43f2f7070cb39137541c332365d2
Signed-off-by: Sandrine Bailleux <[email protected]>
Makefile

index 23a1b0a372ae25f057b56abf83ce86390da1f57f..45197423f90959a7b747dd02cda8fc3efa22a805 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -288,7 +288,7 @@ INCLUDE_TBBR_MK             :=      1
 
 ifneq (${SPD},none)
 ifeq (${ARCH},aarch32)
-       $(error "Error: SPD is incompatible with AArch32.")
+        $(error "Error: SPD is incompatible with AArch32.")
 endif
 ifdef EL3_PAYLOAD_BASE
         $(warning "SPD and EL3_PAYLOAD_BASE are incompatible build options.")